home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / VCLZip / kpdemosd.exe / ZipUtil / ModInfo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-01-22  |  658 b   |  44 lines

  1. unit ModInfo;
  2.  
  3. { $Log: }
  4.  
  5. interface
  6.  
  7. uses
  8. {$IFDEF WIN32}
  9.     Windows,
  10. {$ELSE}
  11.   WinTypes, WinProcs,
  12. {$ENDIF}
  13.     SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  14.   Buttons, ExtCtrls;
  15.  
  16. type
  17.   TModInfoForm = class(TForm)
  18.     OKBtn: TButton;
  19.     CancelBtn: TButton;
  20.     Bevel1: TBevel;
  21.     NewInfoEdit: TEdit;
  22.     Label1: TLabel;
  23.     procedure FormActivate(Sender: TObject);
  24.   private
  25.     { Private declarations }
  26.   public
  27.     { Public declarations }
  28.   end;
  29.  
  30. var
  31.   ModInfoForm: TModInfoForm;
  32.  
  33. implementation
  34.  
  35. {$R *.DFM}
  36.  
  37.  
  38. procedure TModInfoForm.FormActivate(Sender: TObject);
  39. begin
  40.   NewInfoEdit.SetFocus;
  41. end;
  42.  
  43. end.
  44.